home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / etc / RCS / pause.c,v < prev    next >
Text File  |  1988-12-31  |  3KB  |  125 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 1.2
  10. date     88.12.31.12.26.17;  author ouster;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     88.06.19.14.31.39;  author ouster;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @Simplify so as not to need compatibility routines or Sprite kernel calls.
  27. @
  28. text
  29. @/* 
  30.  * pause.c --
  31.  *
  32.  *    Source for "pause" library procedure.
  33.  *
  34.  * Copyright (C) 1986, 1989 Regents of the University of California
  35.  * Permission to use, copy, modify, and distribute this
  36.  * software and its documentation for any purpose and without
  37.  * fee is hereby granted, provided that the above copyright
  38.  * notice appear in all copies.  The University of California
  39.  * makes no representations about the suitability of this
  40.  * software for any purpose.  It is provided "as is" without
  41.  * express or implied warranty.
  42.  */
  43.  
  44. #ifndef lint
  45. static char rcsid[] = "$Header: pause.c,v 1.1 88/06/19 14:31:39 ouster Exp $ SPRITE (Berkeley)";
  46. #endif not lint
  47.  
  48.  
  49. /*
  50.  *----------------------------------------------------------------------
  51.  *
  52.  * pause --
  53.  *
  54.  *    Go to sleep until a signal is received.
  55.  *
  56.  * Results:
  57.  *    Always returns -1, with errno set to EINTR.
  58.  *
  59.  * Side effects:
  60.  *    The process waits until a non-masked signal is received.
  61.  *
  62.  *----------------------------------------------------------------------
  63.  */
  64.  
  65. int
  66. pause()
  67. {
  68.     return sigpause(sigblock(0));
  69. }
  70. @
  71.  
  72.  
  73. 1.1
  74. log
  75. @Initial revision
  76. @
  77. text
  78. @d4 1
  79. a4 1
  80.  *    Procedure to map from Unix pause system call to Sprite.
  81. d6 8
  82. a13 2
  83.  * Copyright (C) 1986 Regents of the University of California
  84.  * All rights reserved.
  85. d17 1
  86. a17 1
  87. static char rcsid[] = "$Header: pause.c,v 1.1 86/04/17 15:20:52 douglis Exp $ SPRITE (Berkeley)";
  88. a19 7
  89. #include "sprite.h"
  90. #include "sig.h"
  91.  
  92. #include "compatInt.h"
  93. #include <signal.h>
  94. #include <errno.h>
  95.  
  96. d26 1
  97. a26 3
  98.  *    Procedure to map from Unix pause system call to Sprite Sig_Pause.
  99.  *    Since the Unix version doesn't take a signal hold mask, we need
  100.  *    to get the current mask and pass it in to Sig_Pause.
  101. d29 1
  102. a29 1
  103.  *    Pause always returns UNIX_ERROR with errno set to EINTR.
  104. d40 1
  105. a40 18
  106.     int currentMask;        /* placeholder for signal mask */
  107.     ReturnStatus status;    /* generic result code */
  108.  
  109.     status = Compat_GetSigHoldMask(¤tMask);
  110.     if (status == FAILURE) {
  111.     errno = Compat_MapCode(status);
  112.     return(UNIX_ERROR);
  113.     }
  114.     status = Sig_Pause(currentMask);
  115.     if (status != SUCCESS) {
  116.     errno = Compat_MapCode(status);
  117.     return(UNIX_ERROR);    
  118.     } else {
  119.     /*
  120.      * should Sig_Pause ever return SUCCESS?
  121.      */
  122.     return(UNIX_SUCCESS);
  123.     }
  124. @
  125.